home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / bash.prerm < prev    next >
Text File  |  2008-05-12  |  289b  |  23 lines

  1. #! /bin/bash
  2.  
  3. set -e
  4.  
  5. case "$1" in
  6.     upgrade)
  7.     update-alternatives --remove builtins.7.gz \
  8.         /usr/share/man/man7/bash-builtins.7.gz
  9.     ;;
  10.  
  11.     remove|deconfigure)
  12.     ;;
  13.  
  14.     failed-upgrade)
  15.     ;;
  16.     *)
  17.         echo "prerm called with unknown argument \`$1'" >&2
  18.         exit 1
  19.     ;;
  20. esac
  21.  
  22.  
  23.